home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr08 / ngw13.zip / XOR.C < prev    next >
C/C++ Source or Header  |  1995-01-15  |  248b  |  13 lines

  1. #include <ClipApi.h>
  2. //----------------------------------------------------------------------------//
  3.  
  4. CLIPPER nXOr()
  5. {
  6.    LONG lRet = 0;
  7.    WORD i = 0;
  8.    while( i < _pcount )
  9.         lRet = lRet ^ _parnl( ++i );
  10.  
  11.    _retnl( lRet );
  12. }
  13.